home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Icon 8.1 / msm-1 / icont.sit / lfile.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-19  |  248 b   |  11 lines  |  [TEXT/MPS ]

  1. /*
  2.  * A linked list of files named by link declarations is maintained using
  3.  *  lfile structures.
  4.  */
  5. struct lfile {
  6.    char *lf_name;        /* name of the file */
  7.    struct lfile *lf_link;    /* pointer to next file */
  8.    };
  9.  
  10. extern struct lfile *lfiles;
  11.